home *** CD-ROM | disk | FTP | other *** search
- /* TConnector.h
- * Written By: Thomas Burkholder
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- */
-
-
- #import <appkit/appkit.h>
- #import <apps/InterfaceBuilder.h>
-
- @interface TConnector:Object <IBConnectors>
- {
- id binder;
- id source; // The real source of the connection
- }
-
- - setBinder:anObject andSource:anotherObject;
- - binder;
-
- - source;
- - destination;
- - establishConnection;
- - free;
- - nibInstantiate;
- - renewObject:old to:new;
- - read:(NXTypedStream *)stream;
- - write:(NXTypedStream *)stream;
-
- @end
-